home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / archiver / restore.arc / MAKEFILE < prev    next >
Text File  |  1988-01-07  |  353b  |  19 lines

  1. # Makefile for RESTORE
  2.  
  3. CFLAGS=
  4. OBJ=restore.o getopt.o
  5. SRC=restore.c getopt.c
  6. OTHERS=backup
  7.  
  8. restore:    $(OBJ) backup
  9.         cc -o restore.prg $(OBJ)
  10.  
  11. clean:
  12.         ( rm *.o *.prg ; exit 0 )
  13.  
  14. # `ct' is the copy-and-preserve-timestamp routine posted last November
  15.  
  16. backup:        $(SRC) $(OTHERS)
  17.         ( touch backup; exit 0 )
  18.         ct -n $? backup d:\src\rest
  19.